home *** CD-ROM | disk | FTP | other *** search
/ The Very Best of Atari Inside / The Very Best of Atari Inside 1.iso / mint / mntinc20 / sys / timeb.h < prev    next >
C/C++ Source or Header  |  1992-05-15  |  441b  |  26 lines

  1. #ifndef _TIMEB_H
  2. #define _TIMEB_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. #ifdef __cplusplus
  9. extern "C" {
  10. #endif
  11.  
  12. struct timeb {
  13.     long        time;        /* seconds since Jan 1., 1970 */
  14.     short        millitm;    /* milliseconds since "time" */
  15.     short        timezone;    /* minutes west of GMT */
  16.     short        dstflag;    /* if time zone can have DST */
  17. };
  18.  
  19. __EXTERN int    ftime    __PROTO((struct timeb *));
  20.  
  21. #ifdef __cplusplus
  22. }
  23. #endif
  24.  
  25. #endif
  26.